From: Antoine du Hamel Date: Fri, 16 May 2025 12:55:50 +0000 (+0200) Subject: [PATCH] build: fix defaults for shared llhttp X-Git-Tag: archive/raspbian/22.22.1+dfsg+_cs22.19.15-1+rpi1^2^2~3 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com//%22mailto:bartha.m.judit%40gmail.com/%22/%22http:/www.example.com/%22mailto:bartha.m.judit%40gmail.com/%22?a=commitdiff_plain;h=e47fb3b89366492a58cbedae1f4599341c2137b5;p=nodejs.git [PATCH] build: fix defaults for shared llhttp PR-URL: https://github.com/nodejs/node/pull/58269 Reviewed-By: James M Snell Reviewed-By: Richard Lau Gbp-Pq: Topic deps Gbp-Pq: Name llhttp-defaults.patch --- diff --git a/configure.py b/configure.py index ef9b120b3..d3b6efc75 100755 --- a/configure.py +++ b/configure.py @@ -293,7 +293,7 @@ shared_optgroup.add_argument('--shared-http-parser-includes', shared_optgroup.add_argument('--shared-http-parser-libname', action='store', dest='shared_http_parser_libname', - default='http_parser', + default='llhttp', help='alternative lib name to link to [default: %(default)s]') shared_optgroup.add_argument('--shared-http-parser-libpath', @@ -2321,7 +2321,7 @@ configure_node_cctest_sources(output) configure_napi(output) configure_debian(output) configure_library('zlib', output) -configure_library('http_parser', output) +configure_library('http_parser', output, pkgname='libllhttp') configure_library('libuv', output) configure_library('ada', output) configure_library('simdjson', output)